home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / Construc / BobNotes.idl < prev    next >
Encoding:
Text File  |  2000-03-02  |  626 b   |  24 lines

  1. module BobNotes
  2. {
  3.   interface ICorBobNotes
  4.   {
  5.     exception PermissionDenied
  6.     {
  7.       string Reason;
  8.     };
  9.  
  10.     void GetLines(in wstring User, in wstring Password, out wstring Lines)
  11.          raises (PermissionDenied);
  12.     void SetLines(in wstring User, in wstring Password, in wstring Lines)
  13.          raises (PermissionDenied);
  14.     void Answer(out long Answer);
  15.     void StringAnswer(in long Question, out wstring Answer);
  16.     void StringAnswer2(in wstring Question, out wstring Answer);
  17.   };
  18.   
  19.   interface CorBobNotesFactory
  20.   {
  21.     ICorBobNotes CreateInstance(in string InstanceName);
  22.   };
  23.  
  24. };